home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / misc_pto / mwpetz15 / winundoc.h < prev   
Text File  |  1987-11-30  |  640b  |  18 lines

  1. /* Declarations for KERNEL File I/O and String Functions */
  2.  
  3. int   FAR PASCAL _lopen  (LPSTR, int) ;
  4. int   FAR PASCAL _lclose (int) ;
  5. int   FAR PASCAL _lcreat (LPSTR, int) ;
  6. LONG  FAR PASCAL _llseek (int, long, int) ;
  7. WORD  FAR PASCAL _lread  (int, LPSTR, int) ;
  8. WORD  FAR PASCAL _lwrite (int, LPSTR, int) ;
  9.  
  10. #define READ       0
  11. #define WRITE      1
  12. #define READ_WRITE 2
  13.  
  14. int   FAR PASCAL lstrlen (LPSTR) ;
  15. LPSTR FAR PASCAL lstrcpy (LPSTR, LPSTR) ;
  16. LPSTR FAR PASCAL lstrcat (LPSTR, LPSTR) ;
  17. int   FAR PASCAL lstrcmp (LPSTR, LPSTR) ;
  18.